home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / dlibsrc.arc / STRDUP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-05  |  167 b   |  11 lines

  1. char *strdup(string)
  2.     register char *string;
  3.     {
  4.     register char *p;
  5.     char *malloc();
  6.  
  7.     if(p = malloc(strlen(string) + 1))
  8.         strcpy(p, string);
  9.     return(p);
  10.     }
  11.